projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
32e6128
)
(define-key-after): Fix typo in previous change.
author
Richard M. Stallman
<rms@gnu.org>
Tue, 20 Jul 1993 18:09:21 +0000
(18:09 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Tue, 20 Jul 1993 18:09:21 +0000
(18:09 +0000)
lisp/subr.el
patch
|
blob
|
history
diff --git
a/lisp/subr.el
b/lisp/subr.el
index 6978038b17987e86e546e23e39060b85a7f6fcd2..5279cf0ea202b48cf91181794b784384581c545a 100644
(file)
--- a/
lisp/subr.el
+++ b/
lisp/subr.el
@@
-191,7
+191,7
@@
KEY must contain just one event type--it must be a string or vector
of length 1."
(or (keymapp keymap)
(signal 'wrong-type-argument (list 'keymapp keymap)))
- (if (> (length key)
0
)
+ (if (> (length key)
1
)
(error "multi-event key specified in `define-key-after'"))
(let ((tail keymap) done inserted
(first (aref key 0)))